ed8aa87d3efe331675b1777e53d20ba2cc9d8863,exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/infinispan/ISPNCacheWorkspaceStorageCache.java,GlobalOperationCaller,updateTreePath,#QPath#QPath#boolean#,1985

Before Change


            if (key instanceof CacheId && !changes.containsKey(key))
            {
               ItemData data = (ItemData)cache.get(key);
               ISPNCacheWorkspaceStorageCache.updateTreePath(wrapper, getOwnerId(), data, prevRootPath, newRootPath);
            }
         }
      }

After Change


            if (key instanceof CacheId && !changes.containsKey(key))
            {
               ItemData data = (ItemData)cache.get(key);
               if (ISPNCacheWorkspaceStorageCache.updateTreePath(cache, getOwnerId(), data, prevRootPath, newRootPath))
               {
                  result.add(data.getIdentifier());
               }